github.com/klauspost/compress/internal/snapref.Reader.decoded (field)

10 uses

	github.com/klauspost/compress/internal/snapref (current package)
		decode.go#L82: 		decoded: make([]byte, maxBlockSize),
		decode.go#L93: 	decoded []byte
		decode.go#L161: 			if n > len(r.decoded) {
		decode.go#L165: 			if _, err := Decode(r.decoded, buf); err != nil {
		decode.go#L169: 			if crc(r.decoded[:n]) != checksum {
		decode.go#L189: 			if n > len(r.decoded) {
		decode.go#L193: 			if !r.readFull(r.decoded[:n], false) {
		decode.go#L196: 			if crc(r.decoded[:n]) != checksum {
		decode.go#L246: 	n := copy(p, r.decoded[r.i:r.j])
		decode.go#L261: 	c := r.decoded[r.i]